home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C / Applications / MacPerl 5.0.3 / Preinstalled MacPerl (FAT) / lib / auto / POSIX / utime.al < prev    next >
Encoding:
Text File  |  1995-08-04  |  191 b   |  10 lines  |  [once/pt: ]

  1. # NOTE: Derived from :::lib:POSIX.pm.  Changes made here will be lost.
  2. package POSIX;
  3.  
  4. sub utime {
  5.     usage "utime(filename, atime, mtime)" if @_ != 3;
  6.     utime($_[1], $_[2], $_[0]);
  7. }
  8.  
  9. 1;
  10.